@font-face {font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('/assets/fonts/fraunces-italic.woff2') format('woff2');
}
@font-face {font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/assets/fonts/fraunces-normal.woff2') format('woff2');
}
@font-face {font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-normal.woff2') format('woff2');
}
/* ron.hiretherobots.com — warm dark editorial. Source of truth: build/src/style.css */
:root {
  --bg: #0d0c0b;
  --bg-2: #141210;
  --bg-3: #1c1916;
  --ink: #f4efe6;
  --ink-2: #cfc7ba;
  --muted: #8f877b;
  --line: rgba(244, 239, 230, .1);
  --accent: #f2b35a;
  --accent-ink: #1a1207;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --wrap: 1200px;
  --pad: clamp(18px, 4vw, 40px);
  --r: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 17px/1.55 var(--sans); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; margin: 0; }
h1 { font-size: clamp(44px, 7.2vw, 96px); line-height: .98; font-variation-settings: 'opsz' 144; }
h2 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.02; font-variation-settings: 'opsz' 96; }
h3 { font-size: clamp(22px, 2.2vw, 27px); line-height: 1.15; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
p { margin: 0; }
.wrap { width: min(var(--wrap), 100% - var(--pad) * 2); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--accent-ink); padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.eyebrow { font: 600 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(242, 179, 90, .18); }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); max-width: 54ch; }
.stars { color: var(--accent); letter-spacing: .08em; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); text-decoration: none; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; font-family: var(--sans);
  transition: transform .25s var(--ease), background .25s;
}
.btn:hover { transform: translateY(-2px); background: #ffc46a; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255, 255, 255, .06); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* header */
.top { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); background: rgba(13, 12, 11, .72); border-bottom: 1px solid var(--line); }
.top-in { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--accent); color: var(--accent-ink); font: 700 13px/1 var(--sans); letter-spacing: .04em; flex: none; }
.brand-name { font-family: var(--serif); font-size: 19px; white-space: nowrap; }
.brand-name em { color: var(--muted); font-style: italic; font-weight: 300; }
.brand-name.big { font-size: 28px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-size: 15px; color: var(--ink-2); }
.nav a:hover { color: var(--ink); }
.nav .btn { color: var(--accent-ink); }
.burger { display: none; width: 44px; height: 44px; background: none; border: 0; position: relative; cursor: pointer; }
.burger span, .burger span::before, .burger span::after { content: ''; position: absolute; left: 10px; width: 24px; height: 2px; background: var(--ink); transition: transform .25s, opacity .25s; }
.burger span { top: 21px; }
.burger span::before { top: -7px; left: 0; } .burger span::after { top: 7px; left: 0; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }
.mnav { display: none; flex-direction: column; gap: 4px; padding: 8px var(--pad) 18px; border-top: 1px solid var(--line); }
.mnav a { padding: 12px 0; text-decoration: none; font-size: 18px; }
.mnav .btn { align-self: flex-start; margin-top: 8px; }
.top.open .mnav { display: flex; }
@media (max-width: 860px) { .nav { display: none; } .burger { display: block; } }

/* hero */
.hero { padding: clamp(48px, 8vw, 110px) 0 clamp(30px, 5vw, 60px); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: -20% -10% auto; height: 70%; background: radial-gradient(60% 60% at 70% 30%, rgba(242, 179, 90, .14), transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 5vw, 70px); align-items: center; position: relative; }
.hero-copy { display: grid; gap: 26px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust { font-size: 14px; color: var(--muted); }
.hero-art { position: relative; height: clamp(360px, 46vw, 640px); }
.hero-tile { margin: 0; position: absolute; border-radius: var(--r); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7), 0 0 0 1px var(--line); background: var(--bg-3); }
.hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-tile figcaption { position: absolute; left: 12px; bottom: 10px; font: 600 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(0, 0, 0, .45); padding: 7px 10px; border-radius: 999px; backdrop-filter: blur(6px); }
.hero-tile.t1 { width: 42%; aspect-ratio: 3/4.4; left: 0; top: 14%; z-index: 2; transform: rotate(-3deg); animation: floaty 9s ease-in-out infinite; }
.hero-tile.t2 { width: 60%; aspect-ratio: 4/3; right: 0; top: 0; z-index: 1; transform: rotate(2deg); animation: floaty 11s ease-in-out infinite reverse; }
.hero-tile.t3 { width: 38%; aspect-ratio: 3/4; right: 8%; top: 52%; z-index: 3; transform: rotate(-1.5deg); animation: floaty 13s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@media (prefers-reduced-motion: reduce) { .hero-tile { animation: none !important; } }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { height: auto; display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); scrollbar-width: none; }
  .hero-art::-webkit-scrollbar { display: none; }
  .hero-tile { position: relative !important; transform: none !important; animation: none !important; flex: 0 0 62vw; aspect-ratio: 3/4 !important; width: auto !important; scroll-snap-align: start; }
  .hero-tile.t2 { aspect-ratio: 4/3 !important; flex-basis: 78vw; }
}

/* marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 14px 0; background: var(--bg-2); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 40s linear infinite; font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--muted); }
.marquee-track span::after { content: '✦'; margin-left: 48px; color: var(--accent); font-style: normal; font-size: 12px; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* sections */
section { padding: clamp(60px, 9vw, 120px) 0; }
.sec-head { display: grid; gap: 12px; max-width: 62ch; margin-bottom: clamp(26px, 4vw, 44px); }
.sec-head p { color: var(--ink-2); font-size: 18px; }
.sec-head a { color: var(--accent); }

/* work */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip { font: 500 14px/1 var(--sans); padding: 11px 16px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--ink-2); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.chip:hover { border-color: rgba(244, 239, 230, .3); color: var(--ink); }
.chip.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.grid { columns: 4 240px; column-gap: 14px; }
@media (max-width: 600px) { .grid { columns: 2; column-gap: 8px; } .tile { margin-bottom: 8px; border-radius: 8px; } }
.tile { margin: 0 0 14px; break-inside: avoid; display: block; border-radius: 12px; overflow: hidden; background: var(--bg-3); position: relative; opacity: 0; translate: 0 14px; animation: tile-in .55s var(--ease) forwards; }
.tile[hidden] { display: none; }
@keyframes tile-in { to { opacity: 1; translate: 0 0; } }
.tile-btn { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.tile img { width: 100%; transition: transform .6s var(--ease), filter .4s; }
.tile:hover img { transform: scale(1.03); }
.tile figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 10px; font-size: 13px; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, .7)); opacity: 0; transition: opacity .3s; pointer-events: none; }
.tile:hover figcaption, .tile:focus-within figcaption { opacity: 1; }
@media (hover: none) { .tile figcaption { opacity: 1; padding-top: 18px; } }
.grid-empty { color: var(--muted); }
.more { margin-top: 22px; color: var(--muted); }
.more a { color: var(--accent); }

/* lightbox */
.lb { border: 0; padding: 0; background: rgba(8, 7, 6, .94); color: var(--ink); width: 100vw; height: 100dvh; max-width: none; max-height: none; inset: 0; }
.lb::backdrop { background: rgba(0, 0, 0, .6); }
.lb-fig { margin: 0; display: grid; place-items: center; align-content: center; height: 100%; padding: 56px 16px 28px; gap: 12px; }
.lb-fig img { max-width: min(96vw, 1400px); max-height: calc(100dvh - 120px); width: auto; height: auto; border-radius: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); }
.lb-fig figcaption { color: var(--ink-2); font-size: 14px; }
.lb-x, .lb-nav { position: fixed; background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid var(--line); width: 48px; height: 48px; border-radius: 50%; font-size: 26px; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.lb-x { top: 14px; right: 14px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 14px; } .lb-next { right: 14px; }
.lb-x:hover, .lb-nav:hover { background: rgba(255, 255, 255, .18); }
@media (max-width: 600px) { .lb-nav { top: auto; bottom: 18px; transform: none; } .lb-prev { left: 18px; } .lb-next { right: 18px; } }

/* services */
.services { background: var(--bg-2); border-block: 1px solid var(--line); }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.svc { padding: 26px 24px 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg); display: grid; gap: 12px; align-content: start; transition: border-color .3s, transform .3s var(--ease); }
.svc:hover { border-color: rgba(242, 179, 90, .5); transform: translateY(-3px); }
.svc .num { font: 500 13px/1 var(--serif); color: var(--accent); letter-spacing: .1em; }
.svc p { color: var(--ink-2); font-size: 15.5px; }
.svc-ex { font-size: 13.5px !important; color: var(--muted) !important; border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; }
.svc-ex span { color: var(--accent); }
.video-note { margin-top: 14px; padding: 26px 24px; border-radius: var(--r); background: linear-gradient(135deg, rgba(242, 179, 90, .16), rgba(242, 179, 90, .04)); border: 1px solid rgba(242, 179, 90, .35); display: grid; gap: 8px; max-width: 720px; }
.video-note p { color: var(--ink-2); }

/* process */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; counter-reset: s; }
.step { display: grid; gap: 10px; padding: 22px 0 0; border-top: 1px solid var(--line); position: relative; }
.step-n { font: 400 42px/1 var(--serif); color: var(--accent); font-style: italic; }
.step p { color: var(--ink-2); font-size: 15.5px; }

/* reviews */
.reviews { background: var(--bg-2); border-block: 1px solid var(--line); }
.rev-grid { columns: 3 300px; column-gap: 14px; }
.rev { margin: 0 0 14px; break-inside: avoid; padding: 24px; border-radius: var(--r); background: var(--bg); border: 1px solid var(--line); display: grid; gap: 16px; }
.rev p { font-family: var(--serif); font-size: 19px; line-height: 1.4; font-variation-settings: 'opsz' 20; }
.rev footer { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--muted); }
.rev cite { font-style: normal; color: var(--ink); font-weight: 600; }

/* about */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.about-art { position: relative; max-width: 420px; }
.about-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; background: var(--bg-3); }
.about-photo picture { height: 100%; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 42% 60%; }
.about-logo { position: absolute; right: -14px; bottom: -14px; width: 130px; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 6px solid var(--bg); background: #fff; box-shadow: 0 20px 40px rgba(0, 0, 0, .5); }
.about-logo img { width: 100%; height: 100%; object-fit: cover; }
.about-note { margin-top: 30px; padding-right: 140px; font-size: 13px; color: var(--muted); font-style: italic; }
.about-copy { display: grid; gap: 18px; }
.about-copy p { color: var(--ink-2); max-width: 56ch; }
.about-links { display: flex; gap: 18px; }
.about-links a { color: var(--accent); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .about-art { max-width: 300px; } }

/* planner */
.plan { background: radial-gradient(70% 50% at 50% 100%, rgba(242, 179, 90, .10), transparent 70%), var(--bg); }
.plan-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: start; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; } .brief { order: -1; } }
.planner { display: grid; gap: 22px; }
.q { border: 1px solid var(--line); border-radius: var(--r); padding: 22px 22px 20px; margin: 0; background: var(--bg-2); display: grid; gap: 14px; }
.q[hidden] { display: none; }
.q legend { font-family: var(--serif); font-size: 22px; padding: 0 6px; margin-left: -6px; }
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opts label { cursor: pointer; }
.opts input { position: absolute; opacity: 0; pointer-events: none; }
.opts span { display: inline-block; padding: 11px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 15px; color: var(--ink-2); transition: .2s; }
.opts.small span { padding: 9px 13px; font-size: 14px; }
.opts label:hover span { border-color: rgba(244, 239, 230, .3); color: var(--ink); }
.opts input:checked + span { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); font-weight: 600; }
.opts input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.fld { display: grid; gap: 6px; }
.fld > span, .fld-label { font-size: 13px; color: var(--muted); letter-spacing: .02em; }
.fld small { font-weight: 400; }
.fld input, .fld select, .fld textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg); color: var(--ink); font: 400 16px/1.4 var(--sans); }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.fld select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .two { grid-template-columns: 1fr; } }
.check { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-2); cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--accent); }
.hp { clip-path: inset(50%); position: absolute; width: 1px; height: 1px; overflow: hidden; }
.plan-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.plan-alt { font-size: 14px; color: var(--muted); }
.plan-alt a { color: var(--accent); }
.form-msg { min-height: 1.4em; font-size: 15px; }
.form-msg.ok { color: #9ee29b; }
.form-msg.bad { color: #ff9b8a; }
.form-msg a { color: var(--accent); }
.brief { position: sticky; top: 86px; border-radius: var(--r); border: 1px solid rgba(242, 179, 90, .35); background: var(--bg-2); overflow: hidden; }
.brief-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line); font: 600 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.brief-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); transition: transform .3s; }
.brief.pulse .brief-dot { transform: scale(1.8); }
.brief pre { margin: 0; padding: 18px; font: 400 15px/1.6 var(--serif); white-space: pre-wrap; color: var(--ink); min-height: 180px; font-variation-settings: 'opsz' 14; }
.brief-foot { padding: 12px 18px 16px; border-top: 1px solid var(--line); font-size: 14px; }
.link { color: var(--accent); }

/* footer */
.foot { border-top: 1px solid var(--line); padding: 50px 0 40px; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: start; }
.foot-tag { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.6; }
.foot-links { display: grid; gap: 8px; justify-items: start; }
.foot-links a { text-decoration: none; color: var(--ink-2); }
.foot-links a:hover { color: var(--accent); }
.foot-small { grid-column: 1 / -1; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 18px; line-height: 1.6; }
.foot-small a { color: var(--muted); }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; } }

/* 404 */
.nf { padding: 120px 0; display: grid; gap: 16px; }
.nf .lede a { color: var(--accent); }

/* reveal */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in, html.no-io .rv, html.capture .rv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }
