:root {
  --ink: #101921;
  --ink-2: #1a2835;
  --blue: #6d8bff;
  --blue-dark: #3155d8;
  --paper: #f5f7fa;
  --white: #ffffff;
  --muted: #637180;
  --line: #dce3ea;
  --success: #1d7a56;
  --radius: 18px;
  --shadow: 0 18px 60px rgba(16, 25, 33, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
button, input, select { font: inherit; }
a { color: inherit; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245,247,250,.92);
  border-bottom: 1px solid rgba(220,227,234,.85);
  backdrop-filter: blur(14px);
}
header nav { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 11px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-link { color: var(--muted); font-size: .94rem; font-weight: 650; text-decoration: none; padding: 10px 12px; }
.button { border: 0; border-radius: 999px; padding: 11px 17px; cursor: pointer; text-decoration: none; font-weight: 750; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.button-primary { color: white; background: var(--ink); }
.button-primary:hover { background: var(--blue-dark); }
.button-light { color: var(--ink); background: white; border: 1px solid var(--line); }

.hero { padding: 48px 0 34px; }
.hero-shell { overflow: hidden; display: grid; grid-template-columns: 1.02fr .98fr; min-height: 520px; background: var(--ink); border-radius: 28px; box-shadow: var(--shadow); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 72px); color: white; }
.eyebrow { margin: 0 0 18px; color: #aebeff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
h1 { margin: 0; max-width: 650px; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.065em; }
.hero-copy > p:not(.eyebrow) { max-width: 560px; margin: 24px 0 28px; color: #c8d2dc; font-size: 1.07rem; }
.hero-image { min-height: 360px; background: url('/assets/stay-photographers-hero.webp') center center / cover no-repeat; position: relative; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,25,33,.55), transparent 32%); }
.search-box { display: grid; grid-template-columns: 1.25fr .8fr auto; gap: 10px; padding: 10px; border-radius: 16px; background: white; box-shadow: 0 16px 40px rgba(0,0,0,.24); }
.search-box input, .search-box select { min-width: 0; height: 48px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 11px; padding: 0 14px; outline: none; }
.search-box input:focus, .search-box select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(109,139,255,.2); }
.search-box button { border-radius: 11px; padding-inline: 22px; background: var(--blue); color: #0c1620; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: #c8d2dc; font-size: .9rem; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: #9ee0c3; font-weight: 900; }

.directory { padding: 48px 0 72px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-head h2 { margin: 0 0 6px; font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -.045em; line-height: 1.05; }
.section-head p { margin: 0; color: var(--muted); }
.result-count { color: var(--muted); font-size: .93rem; white-space: nowrap; }
.filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 22px; }
.filter-chip { border: 1px solid var(--line); background: white; color: var(--ink); padding: 9px 14px; border-radius: 999px; cursor: pointer; font-weight: 700; }
.filter-chip.active { color: white; border-color: var(--ink); background: var(--ink); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { display: flex; flex-direction: column; min-height: 304px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-3px); border-color: #bbc7d4; box-shadow: 0 18px 42px rgba(16,25,33,.10); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.avatar { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: white; background: var(--ink-2); font-weight: 850; letter-spacing: -.04em; }

.card h3 { margin: 17px 0 3px; font-size: 1.16rem; letter-spacing: -.02em; }
.location { margin: 0; color: var(--muted); font-size: .91rem; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0; }
.tag { color: #435160; background: #edf1f5; padding: 5px 8px; border-radius: 7px; font-size: .76rem; font-weight: 700; }
.card-note { margin: 0 0 20px; color: #536170; font-size: .9rem; }
.card-actions { display: flex; gap: 8px; margin-top: auto; }
.card-actions a { flex: 1; padding: 9px 12px; border-radius: 10px; text-align: center; text-decoration: none; font-size: .88rem; font-weight: 750; }
.visit { background: var(--ink); color: white; }
.claim { border: 1px solid var(--line); background: white; }
.empty { padding: 40px; text-align: center; background: white; border: 1px solid var(--line); border-radius: var(--radius); color: var(--muted); }

.sell { margin-bottom: 72px; }
.sell-shell { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; padding: clamp(28px, 5vw, 54px); border-radius: 26px; color: white; background: linear-gradient(135deg, #2944a4, #6d8bff); }
.sell h2 { max-width: 620px; margin: 0 0 13px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.02; letter-spacing: -.05em; }
.sell p { max-width: 620px; margin: 0; color: #e6ebff; }
.sell .fine { margin-top: 14px; }
/* .sell p would otherwise win on specificity and paint the offer card near-white on white. */
.offer p { color: var(--ink); }
.offer .offer-kicker { color: var(--blue-dark); }
.offer { align-self: center; padding: 24px; color: var(--ink); background: white; border-radius: 18px; box-shadow: 0 15px 38px rgba(20,35,95,.2); }
.offer-kicker { margin: 0; color: var(--blue-dark); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.price { margin: 7px 0 3px; font-size: 2.3rem; font-weight: 850; letter-spacing: -.05em; }
.price small { color: var(--muted); font-size: .9rem; letter-spacing: 0; }
.offer ul { margin: 16px 0 20px; padding: 0; list-style: none; color: #465462; font-size: .92rem; }
.offer li { margin: 8px 0; }
.offer li::before { content: "✓"; margin-right: 8px; color: var(--success); font-weight: 900; }
.offer .button { width: 100%; }
.availability { margin-top: 10px !important; color: var(--muted) !important; text-align: center; font-size: .79rem; }

footer { padding: 24px 0 36px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.footer-row { display: flex; justify-content: space-between; align-items: start; gap: 26px; }
.footer-row p { margin: 0; max-width: 700px; }


@media (max-width: 900px) {
  .hero-shell, .sell-shell { grid-template-columns: 1fr; }
  .hero-image { min-height: 320px; order: -1; }
  .hero-image::after { background: linear-gradient(0deg, rgba(16,25,33,.45), transparent 45%); }
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav-link { display: none; }
  .nav-actions .button { padding: 9px 12px; font-size: .86rem; }
  .hero { padding-top: 20px; }
  .hero-shell { border-radius: 20px; }
  .hero-copy { padding: 30px 22px 32px; }
  .hero-image { min-height: 250px; }
  .search-box { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .section-head, .footer-row { align-items: start; flex-direction: column; }
  .directory { padding-top: 36px; }
  .sell { margin-bottom: 46px; }
}

/* ---------------------------------------------------- shared primitives --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; padding: 12px 18px; background: var(--ink); color: white; border-radius: 0 0 10px 0; font-weight: 750; }
.skip-link:focus { left: 0; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 2px;
  border-radius: 6px;
}

.narrow { width: min(760px, calc(100% - 32px)); }
.fine { color: var(--muted); font-size: .85rem; }
.lede { font-size: 1.1rem; color: var(--ink-2); max-width: 66ch; }

/* ------------------------------------------------------------- badges --- */
.badge { padding: 5px 9px; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .01em; white-space: nowrap; border: 1px solid transparent; }
.badge-public { color: var(--muted); background: var(--paper); border-color: var(--line); }
.badge-claimed { color: #2b4d8f; background: #eef2fd; border-color: #c6d3f5; }
.badge-verified { color: var(--success); background: #eef9f4; border-color: #b9dfcf; }
.badge-featured { color: #7a4a00; background: #fff5e2; border-color: #f0d7a8; }

.badge-key { display: grid; gap: 4px 16px; margin: 18px 0 0; }
.badge-key dt { margin-top: 14px; }
.badge-key dd { margin: 0; color: var(--ink-2); }

/* -------------------------------------------------------- page chrome --- */
.page-head { padding: 34px 0 10px; }
.page-head h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.04; letter-spacing: -.045em; margin: 10px 0 14px; }

.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; font-size: .84rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line); }
.breadcrumbs a { color: var(--muted); }

.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; margin-top: 20px; font-weight: 650; }
.footer-links a { color: var(--ink-2); text-decoration: none; padding: 4px 0; }
.footer-links a:hover { text-decoration: underline; }

.city-links { display: flex; flex-direction: column; align-items: start; gap: 8px; margin-top: 44px; }
.city-links h2 { width: 100%; margin: 0 0 4px; font-size: 1.05rem; letter-spacing: -.02em; }
.city-links a { color: var(--blue-dark); font-weight: 650; }

.city-cta { margin: 46px auto 60px; }
.cta-shell { padding: clamp(26px, 4vw, 40px); background: var(--ink); color: white; border-radius: 24px; }
.cta-shell h2 { margin: 0 0 10px; letter-spacing: -.035em; }
.cta-shell p { margin: 0 0 20px; color: #c6d2de; max-width: 60ch; }
.cta-shell .button-primary { background: white; color: var(--ink); }

.visit-secondary { background: white; color: var(--ink); border: 1px solid var(--line); }

/* -------------------------------------------------------------- prose --- */
.prose { padding-bottom: 60px; }
.prose h2 { margin: 34px 0 10px; font-size: 1.35rem; letter-spacing: -.03em; }
.prose h3 { margin: 22px 0 6px; font-size: 1.02rem; }
.prose p, .prose li { color: var(--ink-2); max-width: 70ch; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--blue-dark); }
.tbd { background: #ffe9c7; color: #6b3d00; padding: 1px 6px; border-radius: 5px; font-weight: 700; }

/* -------------------------------------------------------------- forms --- */
.apply-shell { padding-bottom: 70px; }
.apply-form fieldset { margin: 0 0 26px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.apply-form legend { padding: 0 8px; font-weight: 800; letter-spacing: -.02em; }
.field { margin-bottom: 16px; }
.field:last-child { margin-bottom: 0; }
.field > label, .label-like { display: block; margin-bottom: 6px; font-size: .9rem; font-weight: 750; }
.apply-form input[type="text"], .apply-form input[type="email"], .apply-form input[type="url"],
.apply-form input[type="tel"], .apply-form input:not([type]), .apply-form select, .apply-form textarea {
  width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--ink);
}
.apply-form textarea { min-height: 96px; resize: vertical; }
/* Only flag a field once the user has actually interacted with it, never on first paint. */
.apply-form :user-invalid { border-color: #c0392b; outline-color: #c0392b; }
.hint { margin: 6px 0 0; color: var(--muted); font-size: .82rem; }
.req { color: #c0392b; }
.opt { color: var(--muted); font-weight: 600; }
.two-up { display: grid; grid-template-columns: 1fr 120px; gap: 14px; }
.two-up label { display: block; margin-bottom: 6px; font-size: .9rem; font-weight: 750; }
.checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; }
.check { display: flex; align-items: start; gap: 9px; font-weight: 550; font-size: .92rem; line-height: 1.4; }
.check input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; }
.button-lg { width: 100%; padding: 15px 20px; font-size: 1rem; }
.button[disabled] { opacity: .6; cursor: progress; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice { padding: 22px; border-radius: 16px; border: 1px solid var(--line); background: white; }
.notice h2 { margin: 0 0 8px; font-size: 1.2rem; letter-spacing: -.03em; }
.notice p { margin: 0 0 8px; color: var(--ink-2); }
.notice p:last-child { margin-bottom: 0; }
.notice-ok { border-color: #b9dfcf; background: #eef9f4; }
.notice-warn { border-color: #f0d7a8; background: #fff5e2; }
.form-error { margin: 0 0 20px; padding: 14px 16px; border: 1px solid #e4b4ad; background: #fdf0ee; color: #8c2f21; border-radius: 12px; font-weight: 650; }

@media (max-width: 640px) {
  .two-up { grid-template-columns: 1fr; }
  .apply-form fieldset { padding: 18px 14px; }
  .footer-row { gap: 14px; }
}

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

/* --------------------------------------------------- provider card media --- */
/* The card is a flex column so every card in a row ends up the same height
   regardless of how long the description runs. */
.card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.card-body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.card-body .card-actions { margin-top: auto; }

/* Fixed aspect ratio, and every <img> carries width/height, so images cannot
   shift the layout as they load. */
/* overflow:hidden stops a tall image's intrinsic height from overriding the aspect ratio. */
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; flex: none; background: var(--paper); border-bottom: 1px solid var(--line); }
/* Absolutely positioned so the image's intrinsic size can never set the frame height. */
.card-media img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }

/* Used when a business publishes no og:image. Designed rather than empty. */
.card-media-fit { background: hsl(var(--h) 20% 96%); }
.card-media-fit img { inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); object-fit: contain; }

.card-media-fallback {
  display: grid;
  place-items: center;
  border-bottom: 0;
  background: linear-gradient(135deg, hsl(var(--h) 46% 26%), hsl(calc(var(--h) + 38) 52% 46%));
}
.card-media-fallback span {
  color: rgba(255, 255, 255, .95);
  font-size: 2.6rem;
  font-weight: 850;
  letter-spacing: -.05em;
}
