/* =========================================================================
   Henry Digital Media — Redesign Mockup
   Design system built on the existing brand tokens (navy / cream / copper).
   Fonts: DM Serif Display (headings) + Inter (body) — matches live site.
   ========================================================================= */

:root {
  /* Brand palette (pulled from live site) */
  --forest:        #0f1729;
  --forest-mid:    #1a2540;
  --forest-light:  #1e3050;
  --cream:         #fafaf7;
  --cream-dark:    #f2efe9;
  --cream-card:    #ffffff;
  --copper:        #e8634a;
  --copper-light:  #f07a64;
  --copper-dim:    rgba(232, 99, 74, 0.08);
  --copper-border: rgba(232, 99, 74, 0.22);
  --charcoal:      #2a2d35;
  --warm-gray:     #6d7280;
  --light-border:  #ddd8d0;
  --light-border-2:#e8e3db;

  /* Semantic tokens */
  --ink:           #16202e;
  --ink-soft:      #4a5361;
  --on-dark:       #eef1f6;
  --on-dark-soft:  #a9b3c4;

  /* Type */
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 41, 0.04), 0 4px 14px rgba(15, 23, 41, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 41, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 41, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.12rem; font-family: var(--sans); font-weight: 700; letter-spacing: -0.01em; }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); line-height: 1.6; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--cream-dark { background: var(--cream-dark); }
.section--dark { background: var(--forest); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--on-dark-soft); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 46rem; }
.measure-sm { max-width: 34rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--copper);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--copper); border-radius: 2px; }
.section--dark .eyebrow { color: var(--copper-light); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--copper); color: #fff; box-shadow: 0 8px 22px rgba(232,99,74,.28); }
.btn--primary:hover { background: var(--copper-light); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232,99,74,.36); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--light-border); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.3); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,250,247,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--light-border-2); box-shadow: 0 4px 20px rgba(15,23,41,.05); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.28rem; color: var(--ink); letter-spacing: -.01em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--copper), var(--copper-light));
  display: grid; place-items: center; color: #fff; font-family: var(--sans); font-weight: 800; font-size: .95rem;
  box-shadow: 0 4px 12px rgba(232,99,74,.3);
}
.brand small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--warm-gray); font-weight: 600; margin-top: 2px; }
.brand-logo { height: 30px; width: auto; display: block; }
.site-footer .brand-logo { height: 32px; }
@media (max-width: 400px) { .brand-logo { height: 26px; } }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { font-weight: 600; font-size: .95rem; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--forest); color: var(--on-dark); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(232,99,74,.22), transparent 60%),
    radial-gradient(50% 50% at 8% 92%, rgba(30,48,80,.7), transparent 60%);
}
.hero .container { position: relative; padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--copper-light); }
.hero .lead { color: var(--on-dark-soft); margin-top: 1.4rem; }
.hero .btn-row { margin-top: 2.2rem; }
.hero-note { margin-top: 1.4rem; font-size: .9rem; color: var(--on-dark-soft); display: flex; align-items: center; gap: .5rem; }

/* Hero portrait / signal card */
.signal-card {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 1.6rem; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.signal-card .who { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.2rem; }
.signal-card .avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--copper), var(--copper-light));
  display: grid; place-items: center; color: #fff; font-family: var(--serif); font-size: 1.4rem;
}
.signal-card .who strong { color: #fff; font-size: 1.05rem; }
.signal-card .who span { display: block; color: var(--on-dark-soft); font-size: .85rem; }
.signal-list { display: grid; gap: .85rem; }
.signal-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--on-dark); font-size: .95rem; }
.signal-list .tick { color: var(--copper-light); flex: none; margin-top: 2px; }

/* ---------- Trust bar (honest "stats" replacement) ---------- */
.trustbar { background: var(--forest-mid); }
.trustbar .grid-4 { gap: 0; }
.trust-item { padding: 1.6rem 1.4rem; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.trust-item:last-child { border-right: none; }
.trust-item .big { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: #fff; line-height: 1.1; }
.trust-item .lbl { font-size: .86rem; color: var(--on-dark-soft); margin-top: .35rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--cream-card); border: 1px solid var(--light-border-2);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--copper-border); }
.card .ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--copper-dim); color: var(--copper); margin-bottom: 1.2rem;
}
.card .ic svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .96rem; }
.card-list { margin-top: 1.1rem; display: grid; gap: .55rem; }
.card-list li { display: flex; gap: .55rem; font-size: .92rem; color: var(--ink-soft); }
.card-list .tick { color: var(--copper); flex: none; }
.card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.3rem; font-weight: 600; font-size: .93rem; color: var(--copper); }
.card-link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Vertical (industry) cards */
.vcard { position: relative; overflow: hidden; }
.vcard .tag { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--warm-gray); }
.vcard h3 { margin: .5rem 0 .5rem; }

/* ---------- Section heading block ---------- */
.section-head { max-width: 42rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: .9rem; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items: start; padding: 1.4rem 0; border-top: 1px solid var(--light-border-2); }
.step .num { font-family: var(--serif); font-size: 1.5rem; color: var(--copper); width: 3rem; }
.step h4 { margin-bottom: .3rem; }
.step p { font-size: .96rem; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--cream-card); border: 1px solid var(--light-border-2);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm);
}
.quote .stars { color: var(--copper); letter-spacing: 2px; margin-bottom: 1rem; font-size: 1rem; }
.quote blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.55; }
.quote .by { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; }
.quote .by .av { width: 40px; height: 40px; border-radius: 50%; background: var(--forest-light); color: #fff; display: grid; place-items: center; font-weight: 700; flex: none; }
.quote .by strong { font-size: .95rem; }
.quote .by span { display: block; font-size: .84rem; color: var(--warm-gray); }

/* Google rating pill */
.gpill { display: inline-flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--light-border); border-radius: 999px; padding: .55rem 1.1rem; box-shadow: var(--shadow-sm); font-size: .9rem; }
.gpill .stars { color: #f5a623; letter-spacing: 1px; }
.gpill strong { font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--forest), var(--forest-light)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 5vw, 4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 80% 20%, rgba(232,99,74,.25), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-soft); margin: 1rem auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 1.8rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; max-width: 46rem; }
.faq details { border-bottom: 1px solid var(--light-border-2); padding: 1.2rem 0; }
.faq summary { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--copper); line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .8rem; font-size: .98rem; }

/* ---------- Feature list (why me) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.why-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; }
.why-item .n { font-family: var(--serif); color: var(--copper); font-size: 1.3rem; }
.why-item h4 { margin-bottom: .3rem; }
.why-item p { font-size: .95rem; }

/* ---------- Split media block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--light-border-2); background: var(--cream-dark); aspect-ratio: 4/3; display: grid; place-items: center; color: var(--warm-gray); }
.media-frame .ph { text-align: center; padding: 1rem; font-size: .85rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.form { display: grid; gap: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--light-border); border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px var(--copper-dim); }
.field textarea { min-height: 130px; resize: vertical; }
.contact-info { display: grid; gap: 1.4rem; align-content: start; }
.contact-line { display: flex; gap: .9rem; align-items: flex-start; }
.contact-line .ic { width: 42px; height: 42px; border-radius: 10px; background: var(--copper-dim); color: var(--copper); display: grid; place-items: center; flex: none; }
.contact-line .ic svg { width: 20px; height: 20px; }
.contact-line strong { display: block; font-size: .95rem; }
.contact-line span, .contact-line a { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: var(--on-dark-soft); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer .brand { color: #fff; }
.site-footer h5 { font-family: var(--sans); font-weight: 700; color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { display: grid; gap: .65rem; }
.site-footer a { color: var(--on-dark-soft); font-size: .93rem; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-about { max-width: 22rem; font-size: .93rem; margin-top: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; }

/* ---------- Banner / note ---------- */
.mock-banner { background: var(--copper); color:#fff; text-align:center; font-size:.82rem; padding:.5rem 1rem; font-weight:600; letter-spacing:.02em; }
.mock-banner a { text-decoration: underline; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .signal-card { max-width: 30rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: var(--cream); border-bottom: 1px solid var(--light-border-2); padding: 1rem 1.2rem 1.6rem; gap: 1.1rem; box-shadow: var(--shadow-md);
  }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .trustbar .grid-4 { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 440px) {
  .grid-4, .trustbar .grid-4 { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   Blog styles (added Phase 3)
   ========================================================================= */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.post-card { display: flex; flex-direction: column; background: var(--cream-card); border: 1px solid var(--light-border-2); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--copper-border); }
.post-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--forest), var(--forest-light)); display: grid; place-items: center; position: relative; }
.post-card .thumb .cat { position: absolute; top: .9rem; left: .9rem; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--copper); padding: .3rem .7rem; border-radius: 999px; }
.post-card .thumb svg { width: 40px; height: 40px; color: rgba(255,255,255,.35); }
.post-card .body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card .date { font-size: .82rem; color: var(--warm-gray); margin-bottom: .5rem; }
.post-card h3 { font-size: 1.28rem; line-height: 1.2; margin-bottom: .6rem; }
.post-card p { font-size: .93rem; flex: 1; }
.post-card .card-link { margin-top: 1rem; }

/* Article */
.article-head { background: var(--forest); color: var(--on-dark); }
.article-head .container { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem); max-width: 52rem; }
.article-head h1 { color: #fff; max-width: 22ch; }
.post-meta { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; font-size: .92rem; color: var(--on-dark-soft); }
.post-meta .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--copper), var(--copper-light)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; }
.post-meta .cat-pill { color: var(--copper-light); font-weight: 600; }
.prose { max-width: 44rem; margin-inline: auto; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.6rem; }
.prose h3 { font-size: 1.28rem; margin-top: 1.8rem; }
.prose p { font-size: 1.06rem; line-height: 1.7; color: var(--ink-soft); }
.prose ul { display: grid; gap: .7rem; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); font-size: 1.03rem; line-height: 1.6; }
.prose ul li::before { content: ""; position: absolute; left: .1rem; top: .62em; width: 7px; height: 7px; border-radius: 2px; background: var(--copper); }
.prose strong { color: var(--ink); }
.prose a { color: var(--copper); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.author-box { max-width: 44rem; margin: 3rem auto 0; display: flex; gap: 1.2rem; align-items: flex-start; background: var(--cream-dark); border: 1px solid var(--light-border-2); border-radius: var(--radius-lg); padding: 1.6rem; }
.author-box .av { width: 56px; height: 56px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--forest), var(--forest-light)); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 1.3rem; }
.author-box h4 { margin-bottom: .1rem; }
.author-box .role { font-size: .85rem; color: var(--copper); font-weight: 600; margin-bottom: .5rem; }
.author-box p { font-size: .93rem; }
@media (max-width: 860px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Portfolio / Work + Promo (added with real client screenshots)
   ========================================================================= */
.promo-ribbon { background: linear-gradient(90deg, var(--copper), var(--copper-light)); color: #fff; text-align: center; font-size: .92rem; font-weight: 600; padding: .6rem 1rem; letter-spacing: .01em; }
.promo-ribbon a { color: #fff; text-decoration: underline; font-weight: 800; white-space: nowrap; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.work-card { background: var(--cream-card); border: 1px solid var(--light-border-2); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--copper-border); }
.work-card .shot { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-dark); border-bottom: 1px solid var(--light-border-2); }
.work-card .shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s var(--ease); }
.work-card:hover .shot img { transform: scale(1.04); }
.work-card .body { padding: 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.work-card .tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--copper); }
.work-card h3 { font-size: 1.2rem; margin: .35rem 0 .4rem; }
.work-card p { font-size: .92rem; flex: 1; }
.work-card .visit { margin-top: .9rem; font-size: .85rem; font-weight: 600; color: var(--warm-gray); display: inline-flex; align-items: center; gap: .4rem; }
.work-card .visit svg { width: 15px; height: 15px; }

/* Featured work (large, image + copy) */
.work-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.work-feature .shot { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); }
.work-feature .shot img { width: 100%; display: block; }

/* Client trust strip */
.client-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem; margin-top: 1.4rem; }
.client-strip span { color: var(--warm-gray); font-weight: 600; font-size: .95rem; }
.client-strip span::before { content: "✓"; color: var(--copper); margin-right: .4rem; }

@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr 1fr; } .work-feature { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }

/* ===== Promo / Announcement Bar ===== */
.promo-bar {
  background: #e8634a;
  color: #fafaf7;
  font-size: .85rem;
  font-weight: 500;
  padding: .55rem 0;
  position: relative;
  z-index: 1000;
}
.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.promo-bar__link {
  color: #fafaf7;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.promo-bar__link:hover { opacity: .85; }
.promo-bar__close {
  background: none;
  border: none;
  color: #fafaf7;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 .25rem;
  margin-left: auto;
  opacity: .8;
  transition: opacity .15s;
  flex-shrink: 0;
}
.promo-bar__close:hover { opacity: 1; }
