/* IAmMoody. Editorial fashion look: ink + paper + a red-carpet accent. */
:root {
  --ink: #0e0d0c;
  --ink-2: #1b1917;
  --paper: #f6f2ea;
  --paper-2: #ece6da;
  --line: #d9d1c1;
  --muted: #6c665b;
  --red: #a3172b;
  --red-dark: #7f1120;
  --gold: #b89a62;
  --radius: 4px;
  --display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1180px;
  --header-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--sans); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--paper); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.6rem; }
.h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
h1 em { font-style: italic; color: var(--gold); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container.narrow, .narrow { max-width: 780px; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: #fff; color: #000; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---- header ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--ink); color: #fff; height: var(--header-h); transition: background .25s, box-shadow .25s; }
.header-row { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.wordmark { font-family: var(--display); font-size: 1.9rem; text-decoration: none; letter-spacing: .02em; }
.wordmark b { font-weight: 600; font-style: italic; color: var(--gold); margin-left: 1px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) { text-decoration: none; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; opacity: .82; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:not(.btn):hover, .nav a.active { opacity: 1; border-color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 6px auto; transition: transform .2s; }
body.over-hero .site-header { background: transparent; position: fixed; left: 0; right: 0; }
body.over-hero .site-header.scrolled, body.nav-open .site-header { background: rgba(14,13,12,.94); backdrop-filter: blur(8px); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
body.over-hero main { margin-top: 0; }

/* ---- buttons ---- */
.btn { display: inline-block; font: 600 .9rem var(--sans); letter-spacing: .08em; text-transform: uppercase; text-decoration: none; padding: 15px 28px; border-radius: var(--radius); border: 1.5px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.btn-sm { padding: 10px 18px; font-size: .78rem; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { border-color: currentColor; background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost.light { color: #fff; }
.btn-ghost.light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.link-arrow { font-weight: 600; text-decoration: none; letter-spacing: .04em; border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; }
.link-arrow::after { content: " →"; }
.link-arrow.light { color: #fff; }

/* ---- eyebrow / lead ---- */
.eyebrow { font: 600 .78rem var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin: 0 0 14px; }
.eyebrow.light { color: var(--gold); }
.lead-text { font-size: 1.18rem; line-height: 1.65; color: #2c2925; }
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 640px; opacity: .92; margin-bottom: 1.6em; }

/* ---- hero ---- */
.hero, .page-hero { position: relative; color: #fff; background: var(--ink); isolation: isolate; }
.hero::before, .page-hero[style*="--img"]::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--img) center / cover no-repeat;
}
.hero::after, .page-hero[style*="--img"]::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,13,12,.55) 0%, rgba(14,13,12,.25) 35%, rgba(14,13,12,.88) 100%);
}
/* Home hero: the people's faces sit near the top of the photo, so anchor the image to the top.
   (Centered, a wide desktop window crops the top of the picture and cuts off their heads.) */
.hero::before { background-position: center top; }
.hero::after { background: linear-gradient(180deg, rgba(14,13,12,.38) 0%, rgba(14,13,12,.08) 38%, rgba(14,13,12,.9) 100%); }
.hero { min-height: 92vh; display: flex; align-items: flex-end; padding: calc(var(--header-h) + 60px) 0 84px; }
.hero-inner { max-width: var(--max); }
.hero h1 { max-width: 900px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero { padding: calc(var(--header-h) + 72px) 0 72px; }
.page-hero.tall { min-height: 62vh; display: flex; align-items: flex-end; padding-bottom: 64px; }
.page-hero.plain { background: var(--ink); }
.page-hero.plain h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
body:not(.over-hero) .page-hero { padding-top: 72px; }
.about-hero::before { background-position: center 30%; }
/* The build supplies a smaller hero image (--img-sm) for phones and small tablets. */
@media (max-width: 800px) {
  .hero::before, .page-hero[style*="--img"]::before { background-image: var(--img-sm, var(--img)); }
}

/* ---- sections ---- */
.section { padding: 88px 0; }
.section.tight { padding: 44px 0; }
.section.alt { background: var(--paper-2); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 8px; }
.section-head h2 { margin-bottom: .4em; }
.grid { display: grid; gap: 28px; margin-top: 36px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---- stats ---- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value { font-family: var(--display); font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; color: var(--red); }
.stat-value.sm { font-size: 2.4rem; }
.stat-label { font-weight: 500; }
.stat-note { font-size: .78rem; color: var(--muted); letter-spacing: .04em; }
.facts { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.facts > div { display: flex; flex-direction: column; }

/* ---- cards ---- */
.card { display: flex; flex-direction: column; text-decoration: none; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 0 var(--line); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(14,13,12,.14); }
.card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .3em; }
.card-body p { color: #3b3730; }
.card-body .link-arrow { margin-top: auto; align-self: flex-start; }
.card-plain { background: #fff; padding: 28px; border-radius: var(--radius); }
.tag { font: 600 .72rem var(--sans); text-transform: uppercase; letter-spacing: .16em; color: var(--red); margin-bottom: 6px; }
.service-card.lead { outline: 2px solid var(--red); outline-offset: -2px; }
.series-card { position: relative; min-height: 380px; justify-content: flex-end; color: #fff; background: var(--img) center / cover, var(--ink); isolation: isolate; }
.series-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,.9) 100%); }
.series-card-body { padding: 26px; }
.series-card h3 { font-size: 2rem; margin: 0 0 .4em; }

/* ---- split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.split-media.portrait img { object-position: center 20%; }
.split-copy { padding: clamp(36px, 7vw, 96px); align-self: center; max-width: 640px; }
.split.dark { background: var(--ink); color: #fff; }
.split.dark .lead-text { color: #e6e0d4; }

/* ---- lists ---- */
.ticks { list-style: none; padding: 0; margin: 0 0 1.4em; }
.ticks li { position: relative; padding: 8px 0 8px 30px; border-bottom: 1px solid var(--line); }
.ticks li::before { content: ""; position: absolute; left: 4px; top: 17px; width: 10px; height: 10px; background: var(--red); transform: rotate(45deg); }
.ticks.cols { columns: 2; column-gap: 48px; }
.ticks.cols li { break-inside: avoid; }
.clients { list-style: none; padding: 0; margin: 28px 0 8px; display: flex; flex-wrap: wrap; gap: 10px 0; }
.clients li { font-family: var(--display); font-size: 1.5rem; padding: 0 22px 0 0; margin-right: 22px; border-right: 1px solid var(--gold); line-height: 1.2; }
.clients li:last-child { border-right: 0; }
.milestones { list-style: none; padding: 0; margin: 0; }
.milestones li { padding: 16px 0 16px 34px; border-bottom: 1px solid var(--line); position: relative; }
.milestones li::before { content: ""; position: absolute; left: 4px; top: 27px; width: 10px; height: 10px; border: 2px solid var(--red); border-radius: 50%; }
.process { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: p; }
.process li { border-top: 2px solid var(--ink); padding-top: 18px; }
.step { font-family: var(--display); font-size: 1.1rem; color: var(--red); letter-spacing: .1em; }

/* ---- events ---- */
.event-list { list-style: none; padding: 0; margin: 12px 0 28px; }
.event-row a { display: grid; grid-template-columns: 180px 1fr 280px; gap: 20px; align-items: baseline; padding: 16px 8px; border-bottom: 1px solid var(--line); text-decoration: none; transition: background .2s, padding .2s; }
.event-row a:hover { background: rgba(163,23,43,.06); padding-left: 16px; }
.event-date { font-size: .85rem; color: var(--muted); letter-spacing: .04em; }
.event-title { font-family: var(--display); font-size: 1.45rem; line-height: 1.2; }
.event-meta { font-size: .85rem; color: var(--muted); text-align: right; }
.year-h { margin: 40px 0 0; font-size: 2.4rem; color: var(--red); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 8px; }
.chip { font: 500 .85rem var(--sans); padding: 8px 16px; border-radius: 99px; border: 1px solid var(--ink); background: transparent; cursor: pointer; }
.chip.on { background: var(--ink); color: #fff; }
.empty { border: 1px dashed var(--muted); padding: 28px; border-radius: var(--radius); background: #fff; }
.hidden { display: none !important; }

/* ---- case / event detail ---- */
.case-layout { display: grid; grid-template-columns: 280px 1fr; gap: 56px; }
.case-meta dl { margin: 0 0 24px; }
.case-meta dt { font: 600 .72rem var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-top: 16px; }
.case-meta dd { margin: 2px 0 0; }
.case-meta .btn { margin: 6px 6px 0 0; }
.h3.h3 { margin-top: 1.2em; }
.prose img { border-radius: var(--radius); margin: 1em 0; }
.prose a { color: var(--red); }
.policy h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin: 1.9em 0 .5em; }
.policy h2:first-of-type { margin-top: .6em; }
.policy ul { padding-left: 1.2em; } .policy li { margin-bottom: .6em; }

/* ---- gallery ---- */
.masonry { columns: 3; column-gap: 14px; margin-top: 24px; }
.masonry-item { display: block; break-inside: avoid; margin-bottom: 14px; overflow: hidden; border-radius: var(--radius); }
.masonry-item img { width: 100%; transition: transform .5s; }
.masonry-item:hover img { transform: scale(1.03); }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; }
.lightbox img { max-height: 92vh; max-width: 94vw; width: auto; }

/* ---- testimonials ---- */
.quote { margin: 0; background: #fff; padding: 28px; border-radius: var(--radius); }
.quote blockquote { margin: 0 0 12px; font-family: var(--display); font-size: 1.5rem; line-height: 1.3; }
.quote figcaption { color: var(--muted); font-size: .9rem; }

/* ---- CTA ---- */
.cta-band { background: var(--red); color: #fff; padding: 84px 0; text-align: center; }
.cta-band p { max-width: 560px; margin: 0 auto 1.6em; font-size: 1.15rem; }
.cta-band .btn-primary { background: #fff; color: var(--red); }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }

/* ---- form ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 64px; }
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: grid; gap: 6px; font-weight: 500; font-size: .95rem; }
.opt { color: var(--muted); font-weight: 400; }
input, select, textarea { font: inherit; padding: 13px 14px; border: 1px solid #b9b19f; border-radius: var(--radius); background: #fff; color: var(--ink); width: 100%; }
textarea { resize: vertical; }
.form-status { min-height: 1.5em; font-weight: 500; }
.form-status.ok { color: #1b6b32; }
.form-status.err { color: var(--red); }
.contact-side h2 { margin-top: 1.4em; }
.contact-side h2:first-child { margin-top: 0; }
.social { display: flex; gap: 6px 20px; flex-wrap: wrap; margin: 0 0 16px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 500; padding: 4px 0; }
.social-link svg { width: 22px; height: 22px; flex: none; }
.social-link:hover span { text-decoration: underline; text-underline-offset: 3px; }
.site-footer .social-link { color: #d7d0c2; } .site-footer .social-link:hover { color: #fff; text-decoration: none; }
.contact-side .social-link:hover { color: var(--red); }
.mail-link { color: inherit; font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; overflow-wrap: anywhere; }
.mail-link:hover { text-decoration-color: var(--red); }
.site-footer .mail-link { color: #fff; }
.linklike { border: 0; background: none; padding: 0; font: inherit; color: var(--red); text-decoration: underline; cursor: pointer; }
.mailto-fallback { margin-top: 20px; padding: 18px 20px; background: #fff; border-left: 4px solid var(--gold); border-radius: var(--radius); }
.mailto-fallback p { margin: 0 0 .6em; } .mailto-fallback p:last-child { margin: 0; }
.mailto-fallback[hidden] { display: none; }
.copy-status { color: #1b6b32; font-weight: 500; min-height: 1.2em; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { cursor: pointer; font-family: var(--display); font-size: 1.4rem; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::after { content: "+"; color: var(--red); font-size: 1.6rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: #3b3730; padding-bottom: 12px; }

/* ---- footer ---- */
.site-footer { background: var(--ink); color: #d7d0c2; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 48px; }
.site-footer h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 3px 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .muted { color: #a8a190; }
.signup { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px 48px; align-items: center; padding-bottom: 56px; margin-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.12); }
.signup h2 { color: #fff; margin-bottom: .3em; }
.signup-copy p { margin: 0; }
.signup-form { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 10px; }
.signup-form input { padding: 12px 14px; }
.signup-form .hp { position: absolute; left: -5000px; }
.signup-status { grid-column: 1 / -1; margin: 0; min-height: 1.5em; font-weight: 500; }
.signup-status:empty { min-height: 0; }
.signup-status.ok { color: #9fd9ad; }
.signup-status.err { color: #f0a3ad; }
.signup-band { background: var(--red); color: #fff; padding: 48px 0; }
.signup-band .signup { padding-bottom: 0; margin-bottom: 0; border: 0; }
.signup-band .eyebrow.light { color: #f1dcae; margin-bottom: 8px; }
.signup-band .muted { color: #f6e3e5; }
.signup-band .signup-form input { border-color: transparent; }
.signup-band .btn-primary { background: var(--ink); }
.signup-band .btn-primary:hover { background: #fff; color: var(--ink); }
.signup-band .signup-status.ok, .signup-band .signup-status.err { color: #fff; }
.footer-base { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding: 22px 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: #a8a190; }

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---- responsive ---- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .split, .case-layout, .contact-layout, .footer-grid, .signup { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { min-height: 280px; max-height: 480px; }
  .event-row a { grid-template-columns: 1fr; gap: 2px; }
  .event-meta { text-align: left; }
  .masonry { columns: 2; }
  .ticks.cols { columns: 1; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: var(--ink); flex-direction: column; align-items: flex-start; padding: 12px 24px 28px; gap: 6px; display: none; }
  body.nav-open .nav { display: flex; }
  .nav a:not(.btn) { font-size: 1.05rem; padding: 12px 0; width: 100%; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero::after { background: linear-gradient(180deg, rgba(14,13,12,.5) 0%, rgba(14,13,12,.55) 30%, rgba(14,13,12,.93) 68%); }
  .hero h1 em { color: #d8bd85; }
  .section { padding: 60px 0; }
  .grid-3, .process, .form .row, .signup-form { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .hero { min-height: 86vh; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .clients li { border-right: 0; font-size: 1.25rem; padding: 0; }
}
