diff --git a/index.html b/index.html index 2a4f6c3..7e8072a 100644 --- a/index.html +++ b/index.html @@ -171,7 +171,7 @@

Inga Michaelsen

A Professional Certified Coach (PCC) and Team Coach (ACTC) with the International Coaching Federation, Inga designs experiential leadership work at Royal Roads University. Her depth in trauma-informed, systems-aware coaching is the backbone of how we work.

-

More about Inga →

+

More about Inga →

The rigor to build something that works. The soul to make people actually want to use it.
diff --git a/inga.css b/inga.css new file mode 100644 index 0000000..8211ac7 --- /dev/null +++ b/inga.css @@ -0,0 +1,99 @@ +/* ============================================================ + Inga page components — layered on the OC design system. + Reuses tokens + base/nav/band/footer from style.css. + Palette: paper #f7f4ef · navy #0f1729 · amber #e89b1c. + ============================================================ */ + +/* ---- page hero (lighter than the homepage video hero) ---- */ +.inga-hero { padding: calc(var(--nav-h) + 84px) 0 84px; } +.inga-hero h1 { font-size: 3.4rem; max-width: 15ch; } +.inga-hero .lead { max-width: 32em; } +.hero-creds { + display: flex; flex-wrap: wrap; gap: 0.5rem 1.7rem; margin-top: 2.2rem; + font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 500; + letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-soft); +} +.hero-creds span { position: relative; } +.hero-creds span + span::before { content: "·"; position: absolute; left: -1rem; color: var(--amber); } + +/* ---- symptom checklist ---- */ +.checklist { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.7rem; max-width: 46em; } +.checklist li { position: relative; padding-left: 2rem; color: var(--ink-soft); } +.checklist li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 11px; height: 11px; + border: 1.5px solid var(--amber); border-radius: 2px; } +.note { font-style: italic; color: var(--ink-soft); margin-top: 1.6rem; } + +/* ---- split: bio + outcomes card ---- */ +.split { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; } +@media (min-width: 900px) { .split { grid-template-columns: 1.35fr 1fr; } } +.bio-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px; padding: clamp(1.6rem, 3vw, 2.2rem); } +.bio-card h3 { margin-top: 0; } +.bio-card p { color: var(--ink-soft); } +.outcomes { list-style: none; padding: 0; margin: 1.2rem 0 0; } +.outcomes li { position: relative; padding: 0.68rem 0 0.68rem 1.9rem; line-height: 1.5; color: var(--ink); } +.outcomes li + li { border-top: 1px solid var(--line); } +.outcomes li::before { content: "✓"; position: absolute; left: 0; top: 0.68rem; color: var(--amber-deep); + font-weight: 700; font-family: 'DM Sans', sans-serif; } + +/* ---- service cards ---- */ +.cards { display: grid; gap: 1.2rem; margin-top: 2.4rem; } +@media (min-width: 760px) { .cards { grid-template-columns: 1fr 1fr; } } +.card { background: var(--paper); border: 1px solid var(--line); border-radius: 4px; padding: clamp(1.5rem, 2.6vw, 2rem); + display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; } +.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,23,41,.09); border-color: var(--amber); } +.card .when { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; + letter-spacing: 0.1em; color: var(--amber-deep); margin: 0 0 0.5rem; } +.card h3 { margin: 0.1rem 0 0.5rem; } +.card > p { color: var(--ink-soft); margin: 0 0 0.6rem; max-width: none; } +.card .lab { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; + letter-spacing: 0.09em; color: var(--ink); margin: 0.7rem 0 0.4rem; } +.card ul { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); } +.card ul li { margin-bottom: 0.28rem; } + +/* ---- principles grid (3-up) ---- */ +.principles { display: grid; gap: 1.2rem; margin-top: 1.4rem; } +@media (min-width: 720px) { .principles { grid-template-columns: repeat(3, 1fr); } } +.principle { background: var(--paper); border: 1px solid var(--line); border-radius: 4px; padding: 1.3rem 1.4rem; + transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; } +.principle:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(15,23,41,.08); border-color: var(--amber); } +.principle h3 { font-size: 1.12rem; margin: 0 0 0.4rem; } +.principle p { color: var(--ink-soft); margin: 0; max-width: none; } + +/* ---- social-impact callout ---- */ +.callout { margin-top: 2.8rem; background: var(--paper-2); border: 1px solid var(--line); + border-left: 3px solid var(--amber); border-radius: 4px; padding: clamp(1.6rem, 3vw, 2.2rem); } +.callout h3 { margin: 0.2rem 0 0.5rem; } +.callout p { color: var(--ink-soft); max-width: 48em; } +.callout .price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--ink); margin: 0.6rem 0; } + +/* ---- proof stats (on the dark band) — board-style B612 Mono counters ---- */ +.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; max-width: 42em; } +.stat .num { font-family: 'B612 Mono', ui-monospace, monospace; font-weight: 700; font-variant-numeric: tabular-nums; + font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; color: #fff; } +.stat .num .plus { color: var(--amber); } +.stat .lab { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; text-transform: uppercase; + letter-spacing: 0.12em; color: var(--cream-soft); margin-top: 0.5rem; } + +/* ---- practice items (dark band) ---- */ +.practice { display: grid; gap: 1.8rem; margin-top: 2.8rem; } +@media (min-width: 760px) { .practice { grid-template-columns: 1fr 1fr; gap: 2.6rem; } } +.practice .item { border-left: 2px solid var(--amber); padding-left: 1.4rem; } +.practice .item h3 { color: #fff; margin: 0 0 0.5rem; } +.practice .item p { color: var(--cream-soft); margin: 0; max-width: none; } + +/* ---- quotes (dark band) ---- */ +.quotes { display: grid; gap: 1.4rem; margin-top: 2.6rem; } +@media (min-width: 760px) { .quotes { grid-template-columns: 1fr 1fr; } } +.quote { background: rgba(247,244,239,0.05); border: 1px solid var(--line-dark); border-radius: 4px; padding: 1.6rem 1.7rem; + transition: transform .25s ease, border-color .25s ease, background .25s ease; } +.quote:hover { transform: translateY(-3px); border-color: rgba(232,155,28,.5); background: rgba(247,244,239,0.08); } +.quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; line-height: 1.5; + color: #fff; margin: 0 0 0.9rem; max-width: none; } +.quote cite { font-family: 'DM Sans', sans-serif; font-style: normal; font-size: 0.74rem; text-transform: uppercase; + letter-spacing: 0.08em; color: var(--amber); } + +/* ---- reduced motion ---- */ +@media (prefers-reduced-motion: reduce) { + .card, .principle, .quote { transition: none; } + .card:hover, .principle:hover, .quote:hover { transform: none; } +} diff --git a/inga.html b/inga.html new file mode 100644 index 0000000..fb0e93d --- /dev/null +++ b/inga.html @@ -0,0 +1,421 @@ + + + + + + +Inga Michaelsen — Leadership & Team Coaching | Open Communications + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+

Open Communications · Leadership & team coaching

+

How you work together is what carries you through.

+

Inga Michaelsen leads our coaching and facilitation practice — helping leaders and teams build the capacity to perform and relate well, even when the path isn't clear.

+ +
+ Professional Certified Coach (PCC) + Team Coach (ACTC) + International Coaching Federation +
+
+
+ +
+
+

Does this sound familiar?

+

You didn't get here by accident.

+

Your team has real talent, and you've worked hard to build something worth leading. But lately, something feels off.

+
    +
  • The team is working hard — but not quite together.
  • +
  • Priorities shift before the last ones were resolved.
  • +
  • Decisions get made, then quietly unmade or left without a clear owner.
  • +
  • Important conversations keep getting deferred.
  • +
  • Tension sits beneath the surface, named by no one.
  • +
  • Relationships that used to feel easy now feel careful and managed.
  • +
  • You're spending more energy managing dynamics than doing the actual work.
  • +
+

You're not in crisis. But you can see where things are heading if nothing changes.

+
+
+ +
+
+
+
+

Hi, I'm Inga

+

I help teams slow down at the moments that matter.

+

For over a decade, I've supported leaders working in fast-changing and demanding contexts. My background is in leadership development, process facilitation, and coaching. I help leaders and teams slow down at critical moments to build awareness of what's driving behaviour and dynamics — so they can respond with intention and steadiness, rather than react. That supports clearer decisions, stronger relationships, and more sustainable performance over time.

+

I bring a systems-aware, trauma-informed lens to my work, paying close attention to context, power dynamics, and the emotional realities people navigate. I'm a Professional Certified Coach (PCC) and Team Coach (ACTC) with the International Coaching Federation, and an experienced facilitator — known for creating spaces where people can think together, work through tension, and move forward with clarity.

+
+
+

What changes when we work together

+

Through coaching, facilitation, and practical skill-building, I help teams strengthen how they think, decide, and lead together. Teams I work with typically gain:

+
    +
  • clearer alignment around shared purpose and goals
  • +
  • greater clarity in roles, authority, and decision-making
  • +
  • faster, more confident decisions without sacrificing buy-in
  • +
  • more productive dialogue, even when conversations are difficult
  • +
  • stronger trust and shared accountability across teams
  • +
  • performance that's sustainable, not dependent on constant effort
  • +
+
+
+
+
+ +
+
+

Where to start

+

Focused, time-bound, practical.

+

Every team and context is different. These starting points are designed for different moments. Not sure which fits? Start with a conversation, and we'll figure it out together.

+
+ +
+

When you want to see your team's strengths & blind spots

+

Team Pulse Check

+

A light-touch diagnostic that helps leaders understand what's helping — and hindering — their team. Useful during growth, transition, or after a shift in roles, when the team senses something has changed but hasn't yet named it.

+

Typical outcomes

+
    +
  • Clearer understanding of what's helping and getting in the way
  • +
  • Reduced assumptions and unspoken tension
  • +
  • Agreed practical next steps the whole team owns
  • +
+
+ +
+

When decisions are stalling

+

Clear Decisions. Clear Ownership.

+

When decisions keep getting revisited, ownership is unclear, or follow-through breaks down, this gets to the root of it. Not new frameworks — facilitated conversation inside a live meeting, working with your team's real decisions and priorities.

+

Format

+
    +
  • 2–3 hour facilitated session, grounded in real decisions
  • +
  • Clearer decision pathways and stronger follow-through
  • +
  • Clear agreements and next steps at the end
  • +
+
+ +
+

When you want to experience the work first

+

One Meeting. Better.

+

Sometimes the best way to know if something's worth investing in is to try it. I join one of your existing team meetings as a coach and observer — I don't run it, you do. I notice what's helping and what's getting in the way, and coach in the moment where it's useful.

+

Includes

+
    +
  • Pre-meeting conversation with the team leader
  • +
  • Live coaching presence during one real meeting
  • +
  • Debrief plus written observations and recommendations
  • +
+
+ +
+

When pressure is high, and support is needed now

+

30-Day Leadership Support Intensive

+

Some moments call for immediate, focused support — not a program, just steady, skilled presence alongside the leader and team when it matters most. Blends leadership coaching with facilitation inside real team meetings.

+

Format

+
    +
  • Two 1:1 coaching conversations with the leader
  • +
  • Two facilitated team sessions inside existing meetings
  • +
  • Light follow-up to support integration
  • +
+
+ +
+ +

Deeper engagement

+

When a team needs more than a focused starting point, longer arcs of coaching and facilitation meet you where the work is.

+
+

Team Coaching

Coaching alongside your team during real meetings and working sessions — typically over a 4–8 month arc.

+

Team Facilitation

Holding the conversations that matter most, through skilled, neutral facilitation.

+

Effectiveness & Skills

Building practical skills for working together well under pressure.

+

Multi-Stakeholder Support

For teams working across boundaries, roles, and organizations.

+

Offsites & Retreats

Space for reflection, alignment, and renewed direction.

+

1:1 Leadership Coaching

Supporting leaders to develop inner capacity and outer effectiveness.

+
+ +
+

Social impact & low bono

+

Supporting teams doing essential work in the world.

+

For social-impact organizations, nonprofits, climate initiatives, community-resilience collaboratives, and Indigenous-led work — professional team coaching and facilitation at a reduced, flexible investment level, with clearly defined scope and transparent pricing.

+

$1,500 – $4,500 CAD

+

A limited number of these engagements are available each year.

+
+
+
+ +
+
+

In practice

+

A decade of work alongside teams under pressure.

+
+
100+
Workshops
+
850+
Coaching sessions
+
25+
Team engagements
+
+ +
+
+

Team development in real time

+

At Royal Roads University, I design and facilitate experiential leadership and teamwork development, coaching diverse student teams through real moments of tension, uncertainty, and decision-making — so they leave more confident, connected, and equipped to work well together under pressure.

+
+
+

Leading in complexity

+

Alongside an Indigenous leadership team on an initiative connected to sovereignty and community well-being, we worked in a high-pressure environment with many stakeholders and deep historical and relational layers. Through trauma-aware, culturally respectful practices, we created space for reflection, honest conversation, and thoughtful pacing — supporting values-aligned decisions made together.

+
+
+ +
+
+

"Inga is a clear and authentic facilitator who creates the conditions for teams to engage in deep inquiry together. She held space for honest reflection and shared understanding."

+ J. McDonald — Master's Student, Royal Roads University +
+
+

"I'm sincerely grateful for Inga's support, guidance, and encouragement. Her insights and coaching have had a meaningful impact on both my personal and professional growth."

+ M. Dent — Manager, Law Clerk, Carta +
+
+
+
+ +
+
+

About Inga

+

Leadership is harder than it used to be.

+

The pace of change right now isn't like the last one. Leaders who built their careers on judgment, pattern recognition, and knowing their industry cold are suddenly being told that none of it may be enough on its own.

+

Some meet that with curiosity. Most also feel a quieter version of the same question: am I still the right person to lead this — or am I about to be out of step with something I can't quite see yet?

+

I've spent fifteen-plus years working with leaders on exactly that question, across very different settings — from Fortune 500 companies to my own coffee shop. I hold an ICF Professional Certified Coach credential and a Bachelor of Commerce. What I've learned across that range is the same thing every time: strategy isn't what carries people through rapid change. The mindset shift underneath it is — and it's usually the part nobody budgets time for.

+

If you lead a team, they'll have opinions about what's changing whether you ask or not — some about their jobs, some about whether they trust what's being decided for them. If the call is yours alone, that weight sits squarely on your shoulders. Either way, I work on that part: not the technical build, but the place where you and your team actually believe in what's changing.

+

This isn't work you finish. The world keeps moving, and the real skill is staying curious and adaptable as it does — without losing sight of what you value and why you're doing any of this in the first place. That's not a course you complete. It's a conversation, and we have it for as long as it's useful.

+ +

What guides my work

+
+

Connection

The foundation for engagement, creativity, and responsibility — in relationships and in how a team collaborates.

+

Accountability

Choosing how to show up with honesty, vulnerability, and clarity, rather than blame.

+

Curiosity

Staying open to notice, listen, and explore — rather than assume or defend.

+
+ +

Outside of work, you'll find me walking, biking, and dancing around Victoria, BC; spending time with my partner and two adult sons; and travelling regularly to Germany. Nature and movement are how I think and recharge.

+
+
+ +
+
+

Start a conversation

+

This doesn't have to be fully figured out yet.

+

If you're navigating complexity, change, or an important moment for your team, you're welcome to reach out. Share a bit about what's on your mind, and we'll explore together whether this support might help.

+

+ Book a conversation + Email us + Call 778‑985‑OPEN (6736) +

+

The first conversation is free and commits you to nothing.

+
+
+ +
+ + + +
+ Book a conversation +
+ + + + + + + + + + +