/* Golden Hour: cream, warm brown ink, gold accent. */
:root {
  --cream: #f7f2e9;
  --sand: #efe6d4;
  --ink: #2c2317;
  --muted: #8a7a63;
  --gold: #c47f17;
  --line: #e2d7c3;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans);
       font-size: 17px; line-height: 1.6; }
h1, h2 { font-family: var(--serif); font-weight: 600; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .5rem; }
section { max-width: 1100px; margin: 0 auto; padding: clamp(3rem, 8vw, 6rem) 1.25rem; }
a { color: inherit; }

/* Nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 10; display: flex;
       justify-content: space-between; align-items: center;
       padding: .9rem 1.25rem; background: color-mix(in srgb, var(--cream) 82%, transparent);
       backdrop-filter: blur(10px); border-bottom: 1px solid color-mix(in srgb, var(--line) 50%, transparent); }
.nav-brand { font-family: var(--serif); font-style: italic; font-size: 1.2rem;
             text-decoration: none; white-space: nowrap; }
.nav nav { display: flex; gap: 1.4rem; }
.nav nav a { text-decoration: none; font-size: .92rem; letter-spacing: .04em;
             color: var(--muted); white-space: nowrap; }
.nav nav a:hover { color: var(--ink); }
/* Four items plus the wordmark is tight on a phone, so tighten type and gaps
   rather than letting a label wrap into the brand. */
@media (max-width: 560px) {
  .nav { padding: .8rem 1rem; }
  .nav-brand { font-size: 1.02rem; }
  .nav nav { gap: .9rem; }
  .nav nav a { font-size: .8rem; letter-spacing: .01em; }
}

/* Hero */
.hero { position: relative; height: 100svh; max-width: none; padding: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; display: flex; flex-direction: column;
                justify-content: flex-end; padding: clamp(1.5rem, 5vw, 4rem);
                background: linear-gradient(to top, rgba(44,35,23,.55), transparent 55%);
                color: var(--cream); }
.hero-overlay h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-style: italic; }
.hero-line { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-top: .4rem; }
.hero-sub { color: color-mix(in srgb, var(--cream) 75%, transparent); font-size: .95rem; }
.hero-scroll { position: absolute; right: clamp(1.5rem, 5vw, 4rem); bottom: 2rem;
               font-size: 1.6rem; text-decoration: none; color: var(--cream); }
.hero-cta { align-self: start; margin-top: 1.4rem; text-decoration: none;
  font-weight: 500; background: var(--cream); color: var(--ink);
  border-radius: 999px; padding: .8rem 2rem; }
.hero-cta:hover { background: var(--gold); color: var(--cream); }

/* Sticky CTA: appears once the hero is out of sight, so the way to hire him
   is never more than one tap away. */
.sticky-cta { position: fixed; z-index: 9; left: 50%; transform: translateX(-50%);
  bottom: 1.1rem; text-decoration: none; font-weight: 500;
  background: var(--ink); color: var(--cream); border-radius: 999px;
  padding: .8rem 2.1rem; box-shadow: 0 6px 24px rgba(44, 35, 23, .28); }
.sticky-cta:hover { background: var(--gold); }
.sticky-cta[hidden] { display: none; }

/* Proof */
.proof { text-align: center; padding-bottom: 0; }
.client-list { list-style: none; padding: 0; margin: 1rem 0 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem clamp(1rem, 4vw, 2.6rem); }
.client-list li { font-family: var(--serif); font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--muted); }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem); margin-top: clamp(2rem, 5vw, 3.2rem); text-align: left; }
.quotes[hidden] { display: none; }
.quotes blockquote { margin: 0; }
.quotes blockquote p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.4; }
.quotes cite { display: block; margin-top: .6rem; font-style: normal;
  font-size: .88rem; color: var(--muted); }

/* Direct contact buttons */
.direct { margin-top: 1.8rem; }
.direct[hidden] { display: none; }
.direct-note { color: var(--muted); font-size: .92rem; margin-bottom: .6rem; }
.direct-btn { display: inline-block; margin-right: .6rem; text-decoration: none;
  font-weight: 500; border: 1px solid var(--ink); border-radius: 999px;
  padding: .6rem 1.5rem; }
.direct-btn:hover { background: var(--ink); color: var(--cream); }
.footer-links { margin-top: .5rem; font-size: .82rem; }

/* Work grid */
.section-note { color: var(--muted); margin-bottom: 2rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.2rem; }
.grid-more { margin-top: 1.2rem; }
.grid-more[hidden] { display: none; }
.more-btn { display: block; margin: 2.2rem auto 0; font: inherit; font-weight: 500;
  cursor: pointer; background: none; color: var(--ink); border: 1px solid var(--line);
  border-radius: 999px; padding: .7rem 1.9rem; }
.more-btn:hover { border-color: var(--ink); }
.more-btn[hidden] { display: none; }
.tile { cursor: pointer; }
.tile video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 10px;
              background: var(--sand); display: block; }
.tile figcaption { font-size: .88rem; color: var(--muted); padding: .6rem .15rem 0; }
.tile:hover figcaption { color: var(--ink); }

/* Ambient strip */
.ambient { height: 42vh; overflow: hidden; }
.ambient video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* About */
.about { display: grid; grid-template-columns: minmax(180px, 260px) 1fr;
         gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.about-media img { width: 100%; max-width: 260px; border-radius: 10px; display: block; }
.about-text p { margin-top: 1rem; }
@media (max-width: 720px) { .about { grid-template-columns: 1fr; } }

/* Services */
.services { background: var(--sand); max-width: none; }
.services > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.service-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.service-list li { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.9rem);
                   padding: .9rem 0; border-bottom: 1px solid var(--line); }
.service-list li:last-child { border-bottom: none; }

/* Contact */
.contact form { display: grid; gap: 1.1rem; max-width: 560px; margin-top: 2rem; }
.contact label { display: grid; gap: .35rem; font-size: .92rem; color: var(--muted); }
.contact input, .contact textarea { font: inherit; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 8px; padding: .7rem .8rem; }
.contact input:focus, .contact textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
.contact button { justify-self: start; font: inherit; font-weight: 500; cursor: pointer;
  background: var(--ink); color: var(--cream); border: none; border-radius: 999px;
  padding: .75rem 1.8rem; }
.contact button:hover { background: var(--gold); }
.contact-alt { margin-top: 1.6rem; color: var(--muted); }
.hidden-field { position: absolute; left: -9999px; }

/* Campaign landing page */
.lp { padding-top: 3.5rem; }
.lp-hero { text-align: center; padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.lp-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1; max-width: 16ch; margin: 0 auto; }
.lp-sub { color: var(--muted); font-size: 1.05rem; max-width: 52ch;
  margin: 1.1rem auto 0; }
.lp-cta { display: inline-block; margin-top: 1.8rem; text-decoration: none;
  font-weight: 500; background: var(--ink); color: var(--cream);
  border-radius: 999px; padding: .85rem 2.2rem; }
.lp-cta:hover { background: var(--gold); }
.lp-work { padding-top: 0; }
.lp-videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.2rem; }
.lp-videos video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover;
  border-radius: 10px; background: var(--sand); display: block; }
/* Four-up range grid: one column on phones, two on tablets, four on desktop. */
.lp-videos--four { grid-template-columns: 1fr; }
@media (min-width: 560px) { .lp-videos--four { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .lp-videos--four { grid-template-columns: repeat(4, 1fr); } }
.lp-videos figcaption { font-size: .88rem; color: var(--muted); padding: .6rem .15rem 0; }
.lp-videos figure { margin: 0; }
.lp-what { background: var(--sand); max-width: none; }
.lp-what > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

/* Footer */
footer { text-align: center; padding: 2.5rem 1rem; color: var(--muted);
         font-size: .88rem; border-top: 1px solid var(--line); }

/* Lightbox */
.lightbox { border: none; border-radius: 12px; padding: 0; background: #000;
            max-width: min(92vw, 480px); width: auto; }
.lightbox::backdrop { background: rgba(20, 15, 8, .82); }
.lightbox video { display: block; width: 100%; max-height: 86vh; }
.lightbox-close { position: absolute; top: .4rem; right: .4rem; z-index: 1;
  background: rgba(0,0,0,.55); color: #fff; border: none; border-radius: 50%;
  width: 2.2rem; height: 2.2rem; font-size: 1.3rem; cursor: pointer; }
