/* Launch Foundry — design system */

:root {
    --color-ink: #232227;
    --color-paper: #F4EFE4;
    --color-ember-start: #FFB648;
    --color-ember-end: #D6450F;
    --color-accent: var(--color-ember-end);

    --color-bg: var(--color-paper);
    --color-bg-elevated: #EBE4D6;
    --color-bg-subtle: #E8E1D3;
    --color-text: var(--color-ink);
    --color-text-muted: #5C5A62;
    --color-border: #D4CEC2;
    --color-border-strong: #B8B2A6;

    /*--gradient-ember: linear-gradient(135deg, var(--color-ember-start), var(--color-ember-end));*/
    --btn-gold: #FF822E;
    --btn-gold-highlight: #FF7214;

    --font-heading: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 1px 3px color-mix(in srgb, var(--color-ink) 8%, transparent);
    --shadow-md: 0 4px 16px color-mix(in srgb, var(--color-ink) 10%, transparent);
    --shadow-lg: 0 8px 32px color-mix(in srgb, var(--color-ink) 12%, transparent);

    --header-height: 4rem;
    --container-max: 72rem;
    --transition: 180ms ease;

    --focus-ring: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--color-accent);
}

[data-theme="dark"] {
    --color-bg: var(--color-ink);
    --color-bg-elevated: #2E2D33;
    --color-bg-subtle: #3A3940;
    --color-text: var(--color-paper);
    --color-text-muted: #A8A4A0;
    --color-border: #45444C;
    --color-border-strong: #5E5D65;

    --shadow-sm: 0 1px 3px color-mix(in srgb, var(--color-paper) 4%, transparent);
    --shadow-md: 0 4px 16px color-mix(in srgb, var(--color-paper) 6%, transparent);
    --shadow-lg: 0 8px 32px color-mix(in srgb, var(--color-paper) 8%, transparent);

    --focus-ring: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--color-ember-start);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Google Fonts */

.sora-<uniquifier> {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--space-md));
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
}

a:hover {
    text-decoration-thickness: 2px;
    transition: 300ms ease;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-lg);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-elevated);
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.skip-link:focus {
    top: var(--space-md);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
}

.btn--primary {
    background: var(--btn-gold);
    color: var(--color-paper);
    border-color: transparent;
}

.btn--primary:hover {
    transition: 500ms ease;
    background: var(--btn-gold-highlight);
    color: var(--color-paper);
    border-color: transparent;
}

/*.btn--primary:hover {
    filter: brightness(1.05);
    text-decoration: none;
}
*/
.btn--primary:active {
    transform: translateY(1px);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border-strong);
}

.btn--secondary:hover {
    transition: 500ms ease;
    border-color: var(--color-text);
    text-decoration: none;
}

.btn--tertiary {
    background: transparent;
    color: var(--btn-gold);
    border-color: var(--btn-gold);
    padding: 1rem 2rem;
    border-radius: 0px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

.btn--tertiary:hover {
    transition: 500ms ease;
    background: var(--btn-gold-highlight);;
    border-color: var(--btn-gold-highlight);
    color: var(--color-paper);
    text-decoration: none;
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-md);
}

.brand_name {
    font-family: "Sora", sans-serif;
    margin-left: 10px; 
    font-size: 1.2rem
}

.site-logo {
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
}

.site-logo__wordmark {
    height: 3rem;
    width: auto;
    font-family: "Sora", sans-serif !important;
    font-weight: 700 !important;
}

.site-header__controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
}

.nav-toggle__bar {
    display: block;
    width: 1.375rem;
    height: 2px;
    margin-inline: auto;
    background: var(--color-text);
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    display: none;
    position: fixed;
    inset: var(--header-height) 0 0 0;
    flex-direction: column;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    overflow-y: auto;
}

.site-nav.is-open {
    display: flex;
}

.site-nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.site-nav__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
}

.site-nav__link:hover {
    background: var(--btn-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-nav__link.active {
    color: var(--btn-gold);
}

.site-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: auto;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: border-color var(--transition);
}

.theme-toggle:hover {
    border-color: var(--color-border-strong);
}

.theme-toggle__icon {
    width: 1.25rem;
    height: 1.25rem;
}

.theme-toggle__icon--moon {
    display: none;
}

[data-theme="dark"] .theme-toggle__icon--sun {
    display: none;
}

[data-theme="dark"] .theme-toggle__icon--moon {
    display: block;
}

/* Hero */

.hero {
    padding-block: var(--space-3xl) var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
}

/* Case study */

.client-case {
    display: flex;
    gap: var(--space-2xl);
    align-items: flex-start;
    /*grid-template-columns: 1fr 3fr;*/
}

.hero__inner {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    max-width: 16ch;
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 36ch;
    margin-bottom: var(--space-xl);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero__mark {
    justify-self: start;
}

.hero__mark img {
    width: 10rem;
    height: 10rem;
}

/* Sections */

.section {
    padding-block: var(--space-3xl);
    scroll-margin-top: -100px;
}

.section__header {
    margin-bottom: var(--space-2xl);
    max-width: 40rem;
}

.section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: var(--space-sm);
}

.section__lead {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
}

/* Card grid */

.card-grid {
    display: grid;
    gap: var(--space-xl);
}

/* Calendly */

.calendly-inline-widget {
    overflow-y: hidden !important;
    height: 347px !important;
}

/*.calendly-inline-widget {
    border: 3px solid #000000 !important;
    border-radius: 8px;
}*/

/* Alternatively, target the iframe directly */
.calendly-inline-widget iframe {
    border-radius: 16px !important;
    overflow: hidden !important; /* Ensures contents stay within the rounded bounds */
}



/* Project cards */

.project-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.project-card .card_footer {
    display: flex;
    justify-content: space-between;
}

.project-card .window-buttons {
    display: flex;
    margin-left: 2px;
}

.project-card .window-buttons .window-button{
    padding: 8px; 
    width: 6px;
    height: 6px; 
    margin: 5px; 
    border-radius: 20px; 
    background: green;
}

.project-card .window-buttons .window-button{
    padding: 8px; 
    width: 6px;
    height: 6px; 
    margin: 5px; 
    border-radius: 20px; 
    background: green;
}

.project-card .window-buttons .window-button:nth-child(1){
    background: #FF605C;
}

.project-card .window-buttons .window-button:nth-child(2){
    background: #FFBD46;
}

.project-card .window-buttons .window-button:nth-child(3){
    background: #00CA4E;
}

.project-card:hover {
    box-shadow: var(--shadow-md);
}

.project-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--color-bg-subtle);
}

.project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.project-card:hover .project-card__media img {
    transform: scale(1.02);
}

.project-card__body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--space-sm);
}

.project-card__title {
    font-size: 1.25rem;
}

.project-card__desc {
    color: var(--color-text-muted);
    flex: 1;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-block: var(--space-sm);
}

.tag {
    padding: 0.2rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.project-card__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.project-card__link:hover {
    background: var(--btn-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Team cards */

.team-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.team-card--placeholder {
    border-style: dashed;
    opacity: 0.85;
}

.team-card__avatar {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-subtle);
    border-radius: var(--radius-md);
}

.team-card__initials {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.team-card__name {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.team-card__full-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.team-card__role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.team-card__note {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.team-card__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.team-card__links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

.team-card__links a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

/* Contact */

.contact-grid {
    display: grid;
    gap: var(--space-xl);
}

.contact-panel {
    padding: var(--space-xl);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.contact-panel__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.contact-panel__desc {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xl);
}

/* Forms */

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.required {
    color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-border-strong);
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
    border-color: var(--color-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-error {
    display: block;
    min-height: 1.25rem;
    margin-top: var(--space-xs);
    font-size: 0.8125rem;
    color: var(--color-accent);
}

.form-status {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    min-height: 1.5rem;
}

.form-status--success {
    color: var(--color-text);
}

.form-status--error {
    color: var(--color-accent);
}

/* Booking embed */

.booking-embed {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.booking-embed__confirmed {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
    color: var(--color-text-muted);
}

.booking-embed__confirmed strong {
    color: var(--color-text);
}

.booking-embed__container {
    min-height: 12rem;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.booking-embed__placeholder {
    padding: var(--space-xl);
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.booking-embed__iframe {
    width: 100%;
    min-height: 630px;
    border: none;
}

/* Footer */

.site-footer {
    padding-block: var(--space-2xl);
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-subtle);
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.site-footer__copy {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
}

.site-footer__links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

.site-footer__social {
    display: flex;
    gap: var(--space-md);
}

.site-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-text-muted);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: color var(--transition), border-color var(--transition);
}

.site-footer__social a:hover {
    color: var(--color-text);
    border-color: var(--color-border-strong);
}

/* Case Study Hero */
.hero.case-hero {
    background-image: url("https://images.unsplash.com/photo-1579751626657-72bc17010498?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0px;
}

.hero__content.case-hero-content {
    background: var(--color-bg);
    border-radius: 20px 20px 0px 0px;
    align-items: flex-end;
}

/* Case Study Hero */
.hero.case-hero {
    background-image: url("https://images.unsplash.com/photo-1579751626657-72bc17010498?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0px;
}

.about__body {
    max-width: 68ch;
    margin: 0 auto;
}

.about__body p {
    margin: 0 0 var(--space-lg);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

.about__body p:last-child {
    margin-bottom: 0;
}

.about__body p.about__turn {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: var(--space-xl) 0;
}

/* Timeline section */
.timeline-list {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 2px dashed var(--color-border);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    align-items: center;
    gap: var(--space-lg);
    padding-bottom: var(--space-2xl);

    /* same reveal interactivity as .process-item */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc(var(--i, 0) * 120ms);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item.launched { opacity: 1; transform: translateY(0); }

.timeline-item__media { grid-column: 1; }
.timeline-item__number { grid-column: 2; }
.timeline-item__body { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-item__media { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-item__body { grid-column: 1; }

.timeline-item__media {
    aspect-ratio: 4 / 3;
    background: var(--color-bg-subtle);
    border-radius: var(--radius-md);
}

.timeline-item__number {
    justify-self: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
}

.timeline-item__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    margin: 0 0 var(--space-sm);
    color: var(--color-text);
}

.timeline-item__desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.email-alt {
    color: var(--color-text-muted);
}

.email-alt a {
    color: var(--color-text);
    text-decoration: none;
    margin-left: 5px;
}

@media (max-width: 640px) {
    .timeline-list::before { display: none; }
    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    .timeline-item__number { order: -1; }
}


/* Breakpoints */

@media (min-width: 480px) {
    .hero__mark img {
        width: 6rem;
        height: 6rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .site-header__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .site-header__controls {
        margin-left: 0;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: none;
        overflow: visible;
        gap: var(--space-xl);
    }

    .site-nav__list {
        flex-direction: row;
        gap: var(--space-xl);
        margin-bottom: 0;
    }

    .site-nav__link {
        font-size: 0.9375rem;
    }



    .site-nav__actions {
        flex-direction: row;
        align-items: center;
        margin-top: 0;
    }

    .hero__inner {
        grid-template-columns: 1fr auto;
    }

    .hero__mark {
        justify-self: end;
    }

    .hero__mark img {
        width: 7.5rem;
        height: 7.5rem;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .site-footer__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .site-footer__brand {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-block: var(--space-4xl) var(--space-3xl);
    }

    .section {
        padding-block: var(--space-4xl);
    }

    .hero__mark img {
        width: 20rem;
        height: 20rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding-inline: var(--space-2xl);
    }
}

.process-item__body ul {
    margin: var(--space-md) 0 0;
    padding-left: var(--space-lg);
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}
.process-item__body li {
    margin-bottom: var(--space-xs);
    color: var(--color-text-muted);
}
.process-item__body li:last-child {
    margin-bottom: 0;
}
.process-item__body strong {
    color: var(--color-text);
}